3.3.5 前端路由

  • 1.基于hash的前端路由实现
  • 2.基于hash的前端路由升级
  • 3.基于H5 History的前端路由实现

hash

event: hashchange

history

api: pushState,replaceState event: popState, api 中方法不会 触发这个事件,但浏览器前进、后退按钮,history.back()、history.forword()、history.go() 会触发;

参考